home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / GRAPHICS / VOXRAY.ZIP / SHADING.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-10  |  190 b   |  13 lines

  1. #ifndef _SHADING_
  2. #define _SHADING_
  3. #include "ray.h"
  4.  
  5. #define SHADING_ON TRUE
  6. #define SHADING_OFF FALSE
  7.  
  8. typedef BOOL shade_mode;
  9.  
  10. void Set_Shading(shade_mode new_mode);
  11.  
  12. #endif
  13.